# This demonstration script creates a simple form with a bunch
# of entry widgets.
#
# SCCS: @(#) form.tcl 1.5 97/03/02 16:23:48
if {![info exists widgetDemo]} {
error "This script should be run from the \"widget\" demo."
}
set w .form
catch {destroy $w}
toplevel $w
wm title $w "Form Demonstration"
wm iconname $w "form"
positionWindow $w
label $w.msg -font $font -wraplength 4i -justify left -text "This window contains a simple form where you can type in the various entries and use tabs to move circularly between the entries."